home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / Add-Ons / 4D / ComboBox 1.1.1 / src / ComboBoxList.h < prev    next >
Text File  |  1996-02-23  |  1KB  |  35 lines

  1. //---------------------------------------------------------------------------------------
  2. //
  3. //    ComboBoxList.h -- Header for ComboBox external area list process procedures
  4. //
  5. //    Copyright ©1995-1996, Pensacola Christian College
  6. //
  7. //    ======================================================================
  8. //    Change History
  9. //    ======================================================================
  10. //
  11. //    1.0            08/  /95        Steve Dwire
  12. //                                            Initial release
  13. //
  14. //    1.0.1        10/18/95        Steve Dwire
  15. //                                            "#pragma export" for ListProcess()
  16. //
  17. //---------------------------------------------------------------------------------------
  18.  
  19. #ifndef __COMBOBOX_H__
  20. #include "ComboBox.h"
  21. #endif
  22. #include "ComboBoxListMouseDown.h"
  23.  
  24. #if defined(powerc) || WINVER
  25. #pragma export on
  26. void ListProcess(void);
  27. #pragma export off
  28. #else
  29. void main(void);
  30. #endif
  31. void ListProcInit(PackHnd* PackDataHndPtr, WindowPtr* ListWndPtr);
  32. void ListUpdate(AreaHnd AreaDataHnd, EventRecord* event, WindowPtr ListWindow);
  33. void ListActivate(AreaHnd AreaDataHnd, EventRecord* event, WindowPtr ListWindow);
  34. void ListProcDeInit(PackHnd PackDataHnd, WindowPtr ListWindow);
  35.